home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / t_os / igo / src / mititle.c < prev    next >
C/C++ Source or Header  |  1993-07-08  |  20KB  |  834 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <winb.h>
  4. #include <te.h>
  5. #include <fntb.h>
  6. #include <gui.h>
  7.  
  8. extern int    dialogId_title ;
  9. extern int    messageId_title[24] ;
  10. extern int    blacknameId ;
  11. extern int    whitenameId ;
  12. extern int    numboxId[12] ;
  13. extern int    placeId ;
  14. extern int    dbId[2] ;
  15. extern int    igo_titleset() ;
  16. extern int    igo_titlecancel() ;
  17. extern int    listMenuId[3] ;
  18.  
  19. #define ALIGN    4
  20. #define OFFSET(type) (sizeof(MMIPACKET) + (sizeof(type)+ALIGN-1)/ALIGN*ALIGN)
  21.  
  22. /*    MMI_init 用データ    */
  23.  
  24. /*    ヘッダ    */
  25.  
  26. MMIINIT    initDataMITITLE = { "MmiInit",  45, 0 } ;
  27.  
  28. /* dialogId_title */
  29.  
  30. static MMIPACKET d001 = {    &dialogId_title,
  31.                             NULL,
  32.                             &MJ_DIALOGL40,
  33.                             OFFSET(DIALOGL40),
  34.                             MS_NONE
  35.                         } ;
  36. static DIALOGL40    d001d = {    MS_BTLEFTL40 | MS_EVMOSONL40 | MS_SAVEL40,
  37.                               86,  75, 597, 399, 8, 7, 8,
  38.                             MS_SRECTL40 | MS_FRAMEL40,
  39.                             NULL,   0,   0
  40.                         } ;
  41.  
  42. /* messageId_title[0] */
  43.  
  44. static MMIPACKET d002 = {    &messageId_title[0],
  45.                             &dialogId_title,
  46.                             &MJ_MSGL40,
  47.                             OFFSET(MSGL40),
  48.                             MS_NONE
  49.                         } ;
  50. static MSGL40    d002d =     {    MS_CENTERL40 | MS_DSPONLYL40,
  51.                              263,  86, 422, 109, 8,15, 8,
  52.                             MS_NONEL40,
  53.                             "対局記録",
  54.                                1,  12,  12,
  55.                             MS_NONEL40,
  56.                                5,   0
  57.                         } ;
  58.  
  59. /* messageId_title[1] */
  60.  
  61. static MMIPACKET d003 = {    &messageId_title[1],
  62.                             &dialogId_title,
  63.                             &MJ_MSGL40,
  64.                             OFFSET(MSGL40),
  65.                             MS_NONE
  66.                         } ;
  67. static MSGL40    d003d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  68.                               93, 116, 148, 137, 8,15, 8,
  69.                             MS_NONEL40,
  70.                             "対局者",
  71.                                1,  12,  12,
  72.                             MS_NONEL40,
  73.                                5,   0
  74.                         } ;
  75.  
  76. /* messageId_title[2] */
  77.  
  78. static MMIPACKET d004 = {    &messageId_title[2],
  79.                             &dialogId_title,
  80.                             &MJ_MSGL40,
  81.                             OFFSET(MSGL40),
  82.                             MS_NONE
  83.                         } ;
  84. static MSGL40    d004d =     {    MS_CENTERL40 | MS_DSPONLYL40,
  85.                              159, 118, 186, 137, 8,15, 8,
  86.                             MS_NONEL40,
  87.                             "黒",
  88.                                1,  12,  12,
  89.                             MS_NONEL40,
  90.                                5,   0
  91.                         } ;
  92.  
  93. /* messageId_title[3] */
  94.  
  95. static MMIPACKET d005 = {    &messageId_title[3],
  96.                             &dialogId_title,
  97.                             &MJ_MSGL40,
  98.                             OFFSET(MSGL40),
  99.                             MS_NONE
  100.                         } ;
  101. static MSGL40    d005d =     {    MS_CENTERL40 | MS_DSPONLYL40,
  102.                              159, 142, 186, 161, 8,15, 8,
  103.                             MS_NONEL40,
  104.                             "白",
  105.                                1,  12,  12,
  106.                             MS_NONEL40,
  107.                                5,   0
  108.                         } ;
  109.  
  110. /* messageId_title[4] */
  111.  
  112. static MMIPACKET d006 = {    &messageId_title[4],
  113.                             &dialogId_title,
  114.                             &MJ_MSGL40,
  115.                             OFFSET(MSGL40),
  116.                             MS_NONE
  117.                         } ;
  118. static MSGL40    d006d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  119.                               88, 173, 155, 192, 8,15, 8,
  120.                             MS_NONEL40,
  121.                             "対局日時",
  122.                                1,  12,  12,
  123.                             MS_NONEL40,
  124.                                5,   0
  125.                         } ;
  126.  
  127. /* messageId_title[5] */
  128.  
  129. static MMIPACKET d007 = {    &messageId_title[5],
  130.                             &dialogId_title,
  131.                             &MJ_MSGL40,
  132.                             OFFSET(MSGL40),
  133.                             MS_NONE
  134.                         } ;
  135. static MSGL40    d007d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  136.                              159, 175, 193, 193, 8,15, 8,
  137.                             MS_NONEL40,
  138.                             "開始",
  139.                                1,  12,  12,
  140.                             MS_NONEL40,
  141.                                5,   0
  142.                         } ;
  143.  
  144. /* messageId_title[6] */
  145.  
  146. static MMIPACKET d008 = {    &messageId_title[6],
  147.                             &dialogId_title,
  148.                             &MJ_MSGL40,
  149.                             OFFSET(MSGL40),
  150.                             MS_NONE
  151.                         } ;
  152. static MSGL40    d008d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  153.                              158, 206, 192, 224, 8,15, 8,
  154.                             MS_NONEL40,
  155.                             "終了",
  156.                                1,  12,  12,
  157.                             MS_NONEL40,
  158.                                5,   0
  159.                         } ;
  160.  
  161. /* messageId_title[7] */
  162.  
  163. static MMIPACKET d009 = {    &messageId_title[7],
  164.                             &dialogId_title,
  165.                             &MJ_MSGL40,
  166.                             OFFSET(MSGL40),
  167.                             MS_NONE
  168.                         } ;
  169. static MSGL40    d009d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  170.                               90, 273, 199, 292, 8,15, 8,
  171.                             MS_NONEL40,
  172.                             "手合い  コミ",
  173.                                1,  12,  12,
  174.                             MS_NONEL40,
  175.                                5,   0
  176.                         } ;
  177.  
  178. /* messageId_title[8] */
  179.  
  180. static MMIPACKET d010 = {    &messageId_title[8],
  181.                             &dialogId_title,
  182.                             &MJ_MSGL40,
  183.                             OFFSET(MSGL40),
  184.                             MS_NONE
  185.                         } ;
  186. static MSGL40    d010d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  187.                               90, 328, 199, 350, 8,15, 8,
  188.                             MS_NONEL40,
  189.                             "結果",
  190.                                1,  12,  12,
  191.                             MS_NONEL40,
  192.                                5,   0
  193.                         } ;
  194.  
  195. /* blacknameId */
  196.  
  197. static MMIPACKET d011 = {    &blacknameId,
  198.                             &dialogId_title,
  199.                             &MJ_TEXTL40,
  200.                             OFFSET(TEXTL40),
  201.                             MS_NONE
  202.                         } ;
  203. static TEXTL40    d011d =     {    MS_BTLEFTL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_HORIL40,
  204.                              202, 116, 369, 131, 8,15, 8,
  205.                             MS_FRAMEL40,
  206.                             0,
  207.                                0,   0,   0,   0,
  208.                                0,   0,   0,   0,   0,
  209.                                   -1,   0,   0,
  210.                                0,   0,   0,   0,
  211.                                0,
  212.                                0,   0,   0,   0,
  213.                                1,  12,  12,   0,   0,
  214.                                0,   0,   0,   0,   0,   0,   0,
  215.                                0,   0,   0,   0,
  216.                               24
  217.                         } ;
  218.  
  219. /* whitenameId */
  220.  
  221. static MMIPACKET d012 = {    &whitenameId,
  222.                             &dialogId_title,
  223.                             &MJ_TEXTL40,
  224.                             OFFSET(TEXTL40),
  225.                             MS_NONE
  226.                         } ;
  227. static TEXTL40    d012d =     {    MS_BTLEFTL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_HORIL40,
  228.                              202, 144, 369, 159, 8,15, 8,
  229.                             MS_FRAMEL40,
  230.                             0,
  231.                                0,   0,   0,   0,
  232.                                0,   0,   0,   0,   0,
  233.                                   -1,   0,   0,
  234.                                0,   0,   0,   0,
  235.                                0,
  236.                                0,   0,   0,   0,
  237.                                1,  12,  12,   0,   0,
  238.                                0,   0,   0,   0,   0,   0,   0,
  239.                                0,   0,   0,   0,
  240.                               24
  241.                         } ;
  242.  
  243. /* messageId_title[9] */
  244.  
  245. static MMIPACKET d013 = {    &messageId_title[9],
  246.                             &dialogId_title,
  247.                             &MJ_MSGL40,
  248.                             OFFSET(MSGL40),
  249.                             MS_NONE
  250.                         } ;
  251. static MSGL40    d013d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  252.                              283, 175, 298, 194, 8,15, 8,
  253.                             MS_NONEL40,
  254.                             "年",
  255.                                1,  12,  12,
  256.                             MS_NONEL40,
  257.                                5,   0
  258.                         } ;
  259.  
  260. /* numboxId[0] */
  261.  
  262. static MMIPACKET d014 = {    &numboxId[0],
  263.                             &dialogId_title,
  264.                             &MJ_NUMBOXL40,
  265.                             OFFSET(NUMBOXL40),
  266.                             MS_NONE
  267.                         } ;
  268. static NUMBOXL40    d014d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  269.                              203, 175, 272, 192, 8,15, 8,
  270.                             MS_PANELL40 | MS_FRAMEL40,
  271.                             0,
  272.                                1,  12,  12,
  273.                             MS_NONEL40,
  274.                                0,   0,
  275.                                0,   0,9999,   1,   0,
  276.                              263, 264
  277.                         } ;
  278.  
  279. /* numboxId[1] */
  280.  
  281. static MMIPACKET d015 = {    &numboxId[1],
  282.                             &dialogId_title,
  283.                             &MJ_NUMBOXL40,
  284.                             OFFSET(NUMBOXL40),
  285.                             MS_NONE
  286.                         } ;
  287. static NUMBOXL40    d015d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  288.                              304, 177, 349, 194, 8,15, 8,
  289.                             MS_PANELL40 | MS_FRAMEL40,
  290.                             0,
  291.                                1,  12,  12,
  292.                             MS_NONEL40,
  293.                                0,   0,
  294.                                0,   1,  12,   1,   0,
  295.                              263, 264
  296.                         } ;
  297.  
  298. /* messageId_title[10] */
  299.  
  300. static MMIPACKET d016 = {    &messageId_title[10],
  301.                             &dialogId_title,
  302.                             &MJ_MSGL40,
  303.                             OFFSET(MSGL40),
  304.                             MS_NONE
  305.                         } ;
  306. static MSGL40    d016d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  307.                              358, 177, 373, 196, 8,15, 8,
  308.                             MS_NONEL40,
  309.                             "月",
  310.                                1,  12,  12,
  311.                             MS_NONEL40,
  312.                                5,   0
  313.                         } ;
  314.  
  315. /* numboxId[2] */
  316.  
  317. static MMIPACKET d017 = {    &numboxId[2],
  318.                             &dialogId_title,
  319.                             &MJ_NUMBOXL40,
  320.                             OFFSET(NUMBOXL40),
  321.                             MS_NONE
  322.                         } ;
  323. static NUMBOXL40    d017d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  324.                              379, 178, 424, 195, 8,15, 8,
  325.                             MS_PANELL40 | MS_FRAMEL40,
  326.                             0,
  327.                                1,  12,  12,
  328.                             MS_NONEL40,
  329.                                0,   0,
  330.                                0,   1,  31,   1,   0,
  331.                              263, 264
  332.                         } ;
  333.  
  334. /* messageId_title[11] */
  335.  
  336. static MMIPACKET d018 = {    &messageId_title[11],
  337.                             &dialogId_title,
  338.                             &MJ_MSGL40,
  339.                             OFFSET(MSGL40),
  340.                             MS_NONE
  341.                         } ;
  342. static MSGL40    d018d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  343.                              432, 177, 447, 196, 8,15, 8,
  344.                             MS_NONEL40,
  345.                             "日",
  346.                                1,  12,  12,
  347.                             MS_NONEL40,
  348.                                5,   0
  349.                         } ;
  350.  
  351. /* numboxId[3] */
  352.  
  353. static MMIPACKET d019 = {    &numboxId[3],
  354.                             &dialogId_title,
  355.                             &MJ_NUMBOXL40,
  356.                             OFFSET(NUMBOXL40),
  357.                             MS_NONE
  358.                         } ;
  359. static NUMBOXL40    d019d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  360.                              449, 179, 494, 196, 8,15, 8,
  361.                             MS_PANELL40 | MS_FRAMEL40,
  362.                             0,
  363.                                1,  12,  12,
  364.                             MS_NONEL40,
  365.                                0,   0,
  366.                                0,   0,  23,   1,   0,
  367.                              263, 264
  368.                         } ;
  369.  
  370. /* messageId_title[12] */
  371.  
  372. static MMIPACKET d020 = {    &messageId_title[12],
  373.                             &dialogId_title,
  374.                             &MJ_MSGL40,
  375.                             OFFSET(MSGL40),
  376.                             MS_NONE
  377.                         } ;
  378. static MSGL40    d020d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  379.                              501, 179, 516, 198, 8,15, 8,
  380.                             MS_NONEL40,
  381.                             "時",
  382.                                1,  12,  12,
  383.                             MS_NONEL40,
  384.                                5,   0
  385.                         } ;
  386.  
  387. /* numboxId[4] */
  388.  
  389. static MMIPACKET d021 = {    &numboxId[4],
  390.                             &dialogId_title,
  391.                             &MJ_NUMBOXL40,
  392.                             OFFSET(NUMBOXL40),
  393.                             MS_NONE
  394.                         } ;
  395. static NUMBOXL40    d021d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  396.                              515, 178, 559, 195, 8,15, 8,
  397.                             MS_PANELL40 | MS_FRAMEL40,
  398.                             0,
  399.                                1,  12,  12,
  400.                             MS_NONEL40,
  401.                                0,   0,
  402.                                0,   0,  59,   1,   0,
  403.                              263, 264
  404.                         } ;
  405.  
  406. /* messageId_title[13] */
  407.  
  408. static MMIPACKET d022 = {    &messageId_title[13],
  409.                             &dialogId_title,
  410.                             &MJ_MSGL40,
  411.                             OFFSET(MSGL40),
  412.                             MS_NONE
  413.                         } ;
  414. static MSGL40    d022d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  415.                              564, 175, 579, 194, 8,15, 8,
  416.                             MS_NONEL40,
  417.                             "分",
  418.                                1,  12,  12,
  419.                             MS_NONEL40,
  420.                                5,   0
  421.                         } ;
  422.  
  423. /* numboxId[5] */
  424.  
  425. static MMIPACKET d023 = {    &numboxId[5],
  426.                             &dialogId_title,
  427.                             &MJ_NUMBOXL40,
  428.                             OFFSET(NUMBOXL40),
  429.                             MS_NONE
  430.                         } ;
  431. static NUMBOXL40    d023d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  432.                              203, 206, 273, 225, 8,15, 8,
  433.                             MS_PANELL40 | MS_FRAMEL40,
  434.                             0,
  435.                                1,  12,  12,
  436.                             MS_NONEL40,
  437.                                0,   0,
  438.                                0,   0,9999,   1,   0,
  439.                              263, 264
  440.                         } ;
  441.  
  442. /* messageId_title[14] */
  443.  
  444. static MMIPACKET d024 = {    &messageId_title[14],
  445.                             &dialogId_title,
  446.                             &MJ_MSGL40,
  447.                             OFFSET(MSGL40),
  448.                             MS_NONE
  449.                         } ;
  450. static MSGL40    d024d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  451.                              281, 206, 296, 225, 8,15, 8,
  452.                             MS_NONEL40,
  453.                             "年",
  454.                                1,  12,  12,
  455.                             MS_NONEL40,
  456.                                5,   0
  457.                         } ;
  458.  
  459. /* numboxId[6] */
  460.  
  461. static MMIPACKET d025 = {    &numboxId[6],
  462.                             &dialogId_title,
  463.                             &MJ_NUMBOXL40,
  464.                             OFFSET(NUMBOXL40),
  465.                             MS_NONE
  466.                         } ;
  467. static NUMBOXL40    d025d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  468.                              304, 209, 349, 226, 8,15, 8,
  469.                             MS_PANELL40 | MS_FRAMEL40,
  470.                             0,
  471.                                1,  12,  12,
  472.                             MS_NONEL40,
  473.                                0,   0,
  474.                                0,   1,  12,   1,   0,
  475.                              263, 264
  476.                         } ;
  477.  
  478. /* messageId_title[15] */
  479.  
  480. static MMIPACKET d026 = {    &messageId_title[15],
  481.                             &dialogId_title,
  482.                             &MJ_MSGL40,
  483.                             OFFSET(MSGL40),
  484.                             MS_NONE
  485.                         } ;
  486. static MSGL40    d026d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  487.                              358, 208, 369, 227, 8,15, 8,
  488.                             MS_NONEL40,
  489.                             "月",
  490.                                1,  12,  12,
  491.                             MS_NONEL40,
  492.                                5,   0
  493.                         } ;
  494.  
  495. /* numboxId[7] */
  496.  
  497. static MMIPACKET d027 = {    &numboxId[7],
  498.                             &dialogId_title,
  499.                             &MJ_NUMBOXL40,
  500.                             OFFSET(NUMBOXL40),
  501.                             MS_NONE
  502.                         } ;
  503. static NUMBOXL40    d027d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  504.                              379, 210, 424, 227, 8,15, 8,
  505.                             MS_PANELL40 | MS_FRAMEL40,
  506.                             0,
  507.                                1,  12,  12,
  508.                             MS_NONEL40,
  509.                                0,   0,
  510.                                0,   1,  31,   1,   0,
  511.                              263, 264
  512.                         } ;
  513.  
  514. /* messageId_title[16] */
  515.  
  516. static MMIPACKET d028 = {    &messageId_title[16],
  517.                             &dialogId_title,
  518.                             &MJ_MSGL40,
  519.                             OFFSET(MSGL40),
  520.                             MS_NONE
  521.                         } ;
  522. static MSGL40    d028d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  523.                              431, 206, 446, 225, 8,15, 8,
  524.                             MS_NONEL40,
  525.                             "日",
  526.                                1,  12,  12,
  527.                             MS_NONEL40,
  528.                                5,   0
  529.                         } ;
  530.  
  531. /* numboxId[8] */
  532.  
  533. static MMIPACKET d029 = {    &numboxId[8],
  534.                             &dialogId_title,
  535.                             &MJ_NUMBOXL40,
  536.                             OFFSET(NUMBOXL40),
  537.                             MS_NONE
  538.                         } ;
  539. static NUMBOXL40    d029d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  540.                              449, 211, 494, 228, 8,15, 8,
  541.                             MS_PANELL40 | MS_FRAMEL40,
  542.                             0,
  543.                                1,  12,  12,
  544.                             MS_NONEL40,
  545.                                0,   0,
  546.                                0,   0,  23,   1,   0,
  547.                              263, 264
  548.                         } ;
  549.  
  550. /* messageId_title[17] */
  551.  
  552. static MMIPACKET d030 = {    &messageId_title[17],
  553.                             &dialogId_title,
  554.                             &MJ_MSGL40,
  555.                             OFFSET(MSGL40),
  556.                             MS_NONE
  557.                         } ;
  558. static MSGL40    d030d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  559.                              500, 208, 515, 227, 8,15, 8,
  560.                             MS_NONEL40,
  561.                             "時",
  562.                                1,  12,  12,
  563.                             MS_NONEL40,
  564.                                5,   0
  565.                         } ;
  566.  
  567. /* numboxId[9] */
  568.  
  569. static MMIPACKET d031 = {    &numboxId[9],
  570.                             &dialogId_title,
  571.                             &MJ_NUMBOXL40,
  572.                             OFFSET(NUMBOXL40),
  573.                             MS_NONE
  574.                         } ;
  575. static NUMBOXL40    d031d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  576.                              515, 211, 559, 228, 8,15, 8,
  577.                             MS_PANELL40 | MS_FRAMEL40,
  578.                             0,
  579.                                1,  12,  12,
  580.                             MS_NONEL40,
  581.                                0,   0,
  582.                                0,   0,  59,   1,   0,
  583.                              263, 264
  584.                         } ;
  585.  
  586. /* messageId_title[18] */
  587.  
  588. static MMIPACKET d032 = {    &messageId_title[18],
  589.                             &dialogId_title,
  590.                             &MJ_MSGL40,
  591.                             OFFSET(MSGL40),
  592.                             MS_NONE
  593.                         } ;
  594. static MSGL40    d032d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  595.                              564, 208, 579, 227, 8,15, 8,
  596.                             MS_NONEL40,
  597.                             "分",
  598.                                1,  12,  12,
  599.                             MS_NONEL40,
  600.                                5,   0
  601.                         } ;
  602.  
  603. /* placeId */
  604.  
  605. static MMIPACKET d033 = {    &placeId,
  606.                             &dialogId_title,
  607.                             &MJ_TEXTL40,
  608.                             OFFSET(TEXTL40),
  609.                             MS_NONE
  610.                         } ;
  611. static TEXTL40    d033d =     {    MS_BTLEFTL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_HORIL40,
  612.                              204, 242, 371, 257, 8,15, 8,
  613.                             MS_FRAMEL40,
  614.                             0,
  615.                                0,   0,   0,   0,
  616.                                0,   0,   0,   0,   0,
  617.                                   -1,   0,   0,
  618.                                0,   0,   0,   0,
  619.                                0,
  620.                                0,   0,   0,   0,
  621.                                1,  12,  12,   0,   0,
  622.                                0,   0,   0,   0,   0,   0,   0,
  623.                                0,   0,   0,   0,
  624.                               24
  625.                         } ;
  626.  
  627. /* dbId[0] */
  628.  
  629. static MMIPACKET d034 = {    &dbId[0],
  630.                             &dialogId_title,
  631.                             &MJ_DBUTTONL40,
  632.                             OFFSET(DBUTTONL40),
  633.                             MS_NONE
  634.                         } ;
  635. static DBUTTONL40    d034d = {    MS_BTLEFTL40 | MS_EVMOSOFFL40 | MS_EVKEYONL40,
  636.                              390, 360, 469, 385, 4,15, 8,
  637.                             MS_PANELL40 | MS_FRAMEL40,
  638.                             igo_titleset,
  639.                             0x0000
  640.                         } ;
  641.  
  642. /* dbId[1] */
  643.  
  644. static MMIPACKET d035 = {    &dbId[1],
  645.                             &dialogId_title,
  646.                             &MJ_DBUTTONL40,
  647.                             OFFSET(DBUTTONL40),
  648.                             MS_NONE
  649.                         } ;
  650. static DBUTTONL40    d035d = {    MS_BTLEFTL40 | MS_EVMOSOFFL40 | MS_EVKEYONL40,
  651.                              494, 360, 573, 385,10,15, 8,
  652.                             MS_PANELL40 | MS_FRAMEL40,
  653.                             igo_titlecancel,
  654.                             0x0000
  655.                         } ;
  656.  
  657. /* messageId_title[19] */
  658.  
  659. static MMIPACKET d036 = {    &messageId_title[19],
  660.                             &dialogId_title,
  661.                             &MJ_MSGL40,
  662.                             OFFSET(MSGL40),
  663.                             MS_NONE
  664.                         } ;
  665. static MSGL40    d036d =     {    MS_CENTERL40 | MS_DSPONLYL40,
  666.                              391, 361, 469, 383, 8,15, 8,
  667.                             MS_NONEL40,
  668.                             "設定",
  669.                                1,  12,  12,
  670.                             MS_NONEL40,
  671.                                5,   0
  672.                         } ;
  673.  
  674. /* messageId_title[20] */
  675.  
  676. static MMIPACKET d037 = {    &messageId_title[20],
  677.                             &dialogId_title,
  678.                             &MJ_MSGL40,
  679.                             OFFSET(MSGL40),
  680.                             MS_NONE
  681.                         } ;
  682. static MSGL40    d037d =     {    MS_CENTERL40 | MS_DSPONLYL40,
  683.                              494, 360, 572, 382, 8,15, 8,
  684.                             MS_NONEL40,
  685.                             "取消",
  686.                                1,  12,  12,
  687.                             MS_NONEL40,
  688.                                5,   0
  689.                         } ;
  690.  
  691. /* messageId_title[21] */
  692.  
  693. static MMIPACKET d038 = {    &messageId_title[21],
  694.                             &dialogId_title,
  695.                             &MJ_MSGL40,
  696.                             OFFSET(MSGL40),
  697.                             MS_NONE
  698.                         } ;
  699. static MSGL40    d038d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  700.                               89, 240, 198, 262, 8,15, 8,
  701.                             MS_NONEL40,
  702.                             "対局場所",
  703.                                1,  12,  12,
  704.                             MS_NONEL40,
  705.                                5,   0
  706.                         } ;
  707.  
  708. /* listMenuId[0] */
  709.  
  710. static MMIPACKET d039 = {    &listMenuId[0],
  711.                             &dialogId_title,
  712.                             &MJ_LMENUL40,
  713.                             OFFSET(LMENUL40),
  714.                             MS_NONE
  715.                         } ;
  716. static LMENUL40    d039d = {    MS_BTLEFTL40 | MS_EVMOSONL40 | MS_LEFTL40,
  717.                              204, 273, 283, 318, 8,15, 8,
  718.                             MS_DFRAMEL40 | MS_FRAMEL40,
  719.                             0,
  720.                                1,  12,  12,
  721.                             MS_NONEL40,
  722.                                0,   0,
  723.                             0,0,0,0,0,0
  724.                         } ;
  725.  
  726. /* listMenuId[1] */
  727.  
  728. static MMIPACKET d040 = {    &listMenuId[1],
  729.                             &dialogId_title,
  730.                             &MJ_LMENUL40,
  731.                             OFFSET(LMENUL40),
  732.                             MS_NONE
  733.                         } ;
  734. static LMENUL40    d040d = {    MS_BTLEFTL40 | MS_EVMOSONL40 | MS_LEFTL40,
  735.                              430, 275, 480, 313, 8,15, 8,
  736.                             MS_DFRAMEL40 | MS_FRAMEL40,
  737.                             0,
  738.                                1,  12,  12,
  739.                             MS_NONEL40,
  740.                                0,   0,
  741.                             0,0,0,0,0,0
  742.                         } ;
  743.  
  744. /* listMenuId[2] */
  745.  
  746. static MMIPACKET d041 = {    &listMenuId[2],
  747.                             &dialogId_title,
  748.                             &MJ_LMENUL40,
  749.                             OFFSET(LMENUL40),
  750.                             MS_NONE
  751.                         } ;
  752. static LMENUL40    d041d = {    MS_BTLEFTL40 | MS_EVMOSONL40 | MS_LEFTL40,
  753.                              206, 329, 276, 375, 8,15, 8,
  754.                             MS_DFRAMEL40 | MS_FRAMEL40,
  755.                             0,
  756.                                1,  12,  12,
  757.                             MS_NONEL40,
  758.                                0,   0,
  759.                             0,0,0,0,0,0
  760.                         } ;
  761.  
  762. /* numboxId[11] */
  763.  
  764. static MMIPACKET d042 = {    &numboxId[11],
  765.                             &dialogId_title,
  766.                             &MJ_NUMBOXL40,
  767.                             OFFSET(NUMBOXL40),
  768.                             MS_NONE
  769.                         } ;
  770. static NUMBOXL40    d042d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  771.                              305, 325, 400, 348, 8,15, 8,
  772.                             MS_PANELL40 | MS_FRAMEL40,
  773.                             0,
  774.                                1,  12,  12,
  775.                             MS_NONEL40,
  776.                                0,   0,
  777.                                0,   0, 255,   1,   0,
  778.                              263, 264
  779.                         } ;
  780.  
  781. /* numboxId[10] */
  782.  
  783. static MMIPACKET d043 = {    &numboxId[10],
  784.                             &dialogId_title,
  785.                             &MJ_NUMBOXL40,
  786.                             OFFSET(NUMBOXL40),
  787.                             MS_NONE
  788.                         } ;
  789. static NUMBOXL40    d043d =     {    MS_BTLEFTL40 | MS_REPEATL40 | MS_EVMOSONL40 | MS_EVKEYONL40 | MS_RIGHTL40,
  790.                              304, 274, 399, 297, 8,15, 8,
  791.                             MS_PANELL40 | MS_FRAMEL40,
  792.                             0,
  793.                                1,  12,  12,
  794.                             MS_NONEL40,
  795.                                0,   0,
  796.                                0,   0, 255,   1,   0,
  797.                              263, 264
  798.                         } ;
  799.  
  800. /* messageId_title[22] */
  801.  
  802. static MMIPACKET d044 = {    &messageId_title[22],
  803.                             &dialogId_title,
  804.                             &MJ_MSGL40,
  805.                             OFFSET(MSGL40),
  806.                             MS_NONE
  807.                         } ;
  808. static MSGL40    d044d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  809.                              404, 275, 424, 299, 8,15, 8,
  810.                             MS_NONEL40,
  811.                             "目",
  812.                                1,  12,  12,
  813.                             MS_NONEL40,
  814.                                5,   0
  815.                         } ;
  816.  
  817. /* messageId_title[23] */
  818.  
  819. static MMIPACKET d045 = {    &messageId_title[23],
  820.                             &dialogId_title,
  821.                             &MJ_MSGL40,
  822.                             OFFSET(MSGL40),
  823.                             MS_NONE
  824.                         } ;
  825. static MSGL40    d045d =     {    MS_LEFTL40 | MS_DSPONLYL40,
  826.                              405, 323, 425, 347, 8,15, 8,
  827.                             MS_NONEL40,
  828.                             "目",
  829.                                1,  12,  12,
  830.                             MS_NONEL40,
  831.                                5,   0
  832.                         } ;
  833.  
  834.